Dom-Exercises
DOM Exercises#
Note: you can copy the codes to any editor to work on it. CodePen for example.
Exercises 01#
Modify the style of the paragraph text in the following HTML File through javascript code.
By Clicking on the button the font, font size, background color and text color of the paragraph text will be changed.
Sample HTML file
Exercises 02#
Write a JavaScript function to get the value of the href, hreflang, rel, target, and type attributes of the specified link.
Sample HTML file
Exercises 03#
Write a JavaScript program to calculate the volume of a sphere.

Note : sphere_volume = (4/3) Math.PI Math.pow(radius, 3); (V = 4/3 πr³)
Sample HTML file